Release notes
2026r2
Image status in curation API
Curation entails the selecting, organizing, and presenting of films, series and more on a digital platform in a thoughtful and strategic manner. In the Mediagenix Base platform, product pages are used for this, which uses information from the content and press sheets. This includes images, which are important on an on-demand platform.
Previously, an images array was already part of the GET requests for product pages and product page snapshots. However, the image status was not yet part of it, even though it can be useful to verify the images during the curation process.
From this version, the status attribute was added to the images array of the following requests:
-
GET /productPages/{productPageId} -
GET /productPageSnapshots/{productPageSnapshotId}
The value of the attribute corresponds to the API reference of the defined status.
An example of the response of the GET /productPages/{productPageId} request:
{
"productPageId": "9500438855",
"name": "AVENGERS: ENDGAME",
"displayTitle": "Avengers: Endgame",
"translatedDisplayTitle": "อเวนเจอร์ส: เผด็จศึกz",
"type": "Product page",
"isLandingPage": false,
"description": "The Avengers try to save half the universe after the Blip.",
"translatedDescription1": "อเวนเจอร์สพยายามกอบกู้ครึ่งจักรวาลหลังจากเหตุการณ์ Blipz",
...
"images": [
{
"imageId": "image",
"highResolutionURL": "https://m.media-amazon.com/images/M/MV5BMTc5MDE2ODcwNV5BMl5BanBnXkFtZTgwMzI2NzQ2NzM@._V1_.jpg",
"externalURL": null,
"identification": "EN",
"pressTargets": [
"Default"
],
"languages": [],
"imageType": "Poster",
"status": "Ready"
},
...
To be able to match the API reference to the correct value, a GET /imageStatuses drop-down call has been added. It returns the API reference and description of all values in the WOnImageEditorialStatus drop-down list.
An example of the response:
[
{
"id": "Ready",
"name": "Ready"
},
{
"id": "WaitingForHD",
"name": "WaitingForHD"
},
{
"id": "InPreparation",
"name": "In preparation"
}
]
API developers
The YAML has been updated for these changes. The latest version can be retrieved by using the GET /api call.
At line 413, the /imageStatuses path was added.
At line 1190, the status was added to the properties of the ImageForContent schema.
For easier viewing, the YAMLs can also be compared here: TextCompare